home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d17 / pr.arc / MAKEFILE < prev    next >
Text File  |  1987-02-25  |  294b  |  22 lines

  1. # Makefile for pr.c
  2. #
  3. # default rules will come from make.ini
  4. #
  5.  
  6. swchar.obj : $*.asm
  7.  
  8. pr.obj : $*.c
  9.  
  10. tod.obj : $*.c
  11.  
  12. getopt.obj : getopt.c
  13.     cc -c -ms -qd: -dNAME="pr" -o$* $*.c
  14.  
  15. pr.exe : \
  16.    pr.obj \
  17.    tod.obj \
  18.    getopt.obj \
  19.    swchar.obj \
  20.    pr.lnk
  21.     plink86 @pr.lnk
  22.